home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C++
/
Frameworks
/
Sprocket Framework DR2
/
Sprocket Framework Interfaces
/
AEThreads.h
< prev
next >
Wrap
Text File
|
1996-05-22
|
668b
|
36 lines
// Sprocket Framework header file
// AEThreads.h
#ifndef __AETHREADS__
#define __AETHREADS__
#pragma once
#ifndef __THREADS__
#include <Threads.h>
#endif
#ifndef __APPLEEVENTS__
#include <AppleEvents.h>
#endif
pascal OSErr AEHandleInThread(
const AppleEvent* event,
AppleEvent* reply,
AEEventHandlerUPP handler,
long handlerRefcon,
ThreadOptions options,
Size stacksize);
pascal OSErr AEInstallThreadedEventHandler(
AEEventClass theAEEventClass,
AEEventID theAEEventID,
AEEventHandlerUPP proc,
long handlerRefcon,
ThreadOptions options,
Size stacksize);
#endif // __AETHREADS__